Linux下解压文件

解压文件

tar.bz与tar.ba2解压

从网络上下载到的源码包, 最常见的是 .tar.gz 包, 还有一部分是 .tar.bz2包

文件类型 解压命令
.tar.gz tar -zxvf xx.tar.gz
.tar.bz2 tar -jxvf xx.tar.bz2

tar (child): lbzip2: Cannot exec: No such file or directory 解决方法

tar (child): lbzip2: Cannot exec: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now

解决方法:

安装bzip2

1
2
3
4
5
6
7
yum -y install bzip2

# 或者源码安装
tar zxvf bzip2-1.0.6.tar.gz
cd bzip2-1.0.6/
make -f Makefile-libbz2_so
make && make install